home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / doc / python-xdg / examples / test-desktop-write.py next >
Encoding:
Python Source  |  2009-03-04  |  247 b   |  12 lines

  1. #!/usr/bin/python
  2. from xdg.DesktopEntry import *
  3.  
  4. import os, sys
  5.  
  6. test = DesktopEntry()
  7. test.parse("/usr/share/applications/gedit.desktop")
  8. test.removeKey("Name")
  9. test.addGroup("Hallo")
  10. test.set("key", "value", "Hallo")
  11. test.write("test.desktop")
  12.